home *** CD-ROM | disk | FTP | other *** search
/ US Department of Defense…ndamentals 1.0 2004 April / US Department of Defense: Firewall & Router Fundamentals 1.0 2004 April.iso / sco / interface / sco.swf / scripts / DefineSprite_6_dust01 / frame_2 / DoAction.as
Encoding:
Text File  |  2004-05-11  |  225 bĀ   |  13 lines

  1. this._x += vx;
  2. this._y += vy;
  3. ap = 100 * life / 70;
  4. this._xscale = ap;
  5. this._yscale = ap;
  6. vx += (random(51) - 25) / ap;
  7. vy += (random(51) - 25) / ap;
  8. life -= 1;
  9. if(Number(life) < 0)
  10. {
  11.    this.removeMovieClip();
  12. }
  13.